home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr30 / scr210a.zip / PCHELP.DOC < prev    next >
Text File  |  1993-01-23  |  14KB  |  302 lines

  1.  
  2.                  HELP FOR NEW USERS & PROBLEMS YOU MIGHT HAVE 
  3.  
  4.                                   FROM:
  5.         
  6.                            California Freeware
  7.                            1747 E. Ave Q  # C-1
  8.                            Palmdale, Ca. 93550
  9.                            (805) 273-0300
  10.  
  11.                            (C) Copyright 1989
  12.  
  13.      Public domain/shareware software is very easy to use if you are familiar
  14. with a few basic 'DOS' commands. These commands are 'COPY', 'DISKCOPY', 'DIR',  
  15. 'TYPE', 'FORMAT', 'PRINT' and a few others.
  16.  
  17.      None of the disks are 'bootable', which means that you cannot place
  18. the disk in your computer, turn it on, and expect something to happen.
  19.  
  20.      The first thing to do is to make a backup copy of your disk. Place
  21. a write protect tab over the notch in the side of the diskette, this
  22. prevents writing on your master disk that you received from us.
  23.  
  24.      If you have two floppy drives:
  25.  
  26.      A> DISKCOPY A: B:  <enter> - will copy all files from 'A' to 'B'
  27.  
  28.      If you have only one floppy drive:
  29.  
  30.      A> DISKCOPY A: A:  <enter> - will copy all files from the first disk
  31.                                   to the second disk
  32.  
  33.      Put the original disk away and use the working copy only !!!
  34.  
  35.      In the event that you get some sort of error message when using the 
  36. 'DISKCOPY' command, you will then have to use the 'COPY' or 'XCOPY' command
  37. to make a backup of your original disk. 'XCOPY' is available with 'DOS' V3.2 
  38. and V3.3.
  39.  
  40.      If you have 2 floppy drives, place a blank 'FORMATTED' disk in your 'B'
  41. drive and issue the following command:
  42.  
  43.      A> COPY *.* B:  <enter> - will copy all files from 'A' to 'B'
  44.  
  45.      Please be advised that 'COPY' in the above command will NOT copy any
  46. files that exist in any subdirectories. 'XCOPY' will copy any files that 
  47. reside in any subdirectories. 
  48.  
  49.      If using 'XCOPY' with a two floppy drive system, use the following
  50. command:
  51.  
  52.      A> XCOPY A: B:/S  <enter> - will copy all files in the 'A' drive and
  53.                                  and place them on the 'B' drive, including
  54.                                  any files in any subdirectories. You MUST
  55.                                  have a 'BLANK FORMATTED' disk in the 'B'
  56.                                  drive.
  57.  
  58.      Please consult your 'DOS' manual about subdirectories or the 'XCOPY'
  59. command.
  60.  
  61.      If you have only 1 floppy drive and a hard drive, replace the 'B' in
  62. the above command with a 'C' and copy the files to your hard drive. We
  63. suggest that you make a subdirectory on your hard drive to copy the files
  64. to, so that you do not copy files into your 'root directory'. Please consult
  65. your 'DOS' manual about subdirectories.
  66.  
  67.      You could then copy the files from your hard drive back to another
  68. 'FORMATTED' floppy with the following command:
  69.  
  70.      C> COPY *.* A:  <enter> - will copy files from 'C' to 'A'
  71.  
  72.      The next thing to do is see what files are on the disk.  Place the
  73. working copy in the 'A' drive and enter the following command:
  74.  
  75.      A> DIR  <enter> - you will see columns of information about the files.
  76.  
  77.      A filename consists of two parts; the filename and the extension. The
  78. filename will be on the left (up to 8 characters long), the extension will
  79. be just to the right (up to 3 characters long).
  80.  
  81.      You will be looking for certain extension names; which will tell you 
  82. something about the types of files that you will be using.   
  83.  
  84.      When referring to files, you must use the filename and the extension
  85. with a period separating them.
  86.  
  87.      If there are less than eight characters in the filename do not use spaces.
  88.  
  89.      Example:
  90.  
  91.      (filename)   (extension)
  92.  
  93.        README         DOC           must be referred to as README.DOC
  94.  
  95. ==============================================================================
  96.  
  97.      The following is a list of frequently used file extensions:
  98.  
  99. ******************************************************************************
  100. *      IMPORTANT.....IMPORTANT.....IMPORTANT.....IMPORTANT.....IMPORTANT     *
  101. *----------------------------------------------------------------------------*
  102. * EXE - a program file executed by typing the filename (1st 8 characters)    *
  103. *                                                                            *
  104. * COM - a command file executed by typing the filename (1st 8 characters)    *
  105. *                                                                            *
  106. * BAT - a batch file - contains 'DOS' commands, executed by typing the       *
  107. *       filename (1st 8 characters only)                                     *
  108. *                                                                            *
  109. * BAS - a 'BASIC' program. Needs GWBASIC or BASICA to run the program.       *
  110. *                                                                            *
  111. * ARC - an archived file - needs to be unarchived, contains many files.      *
  112. *                                                                            *
  113. * DOC - A DOCUMENTATION FILE - instructions about the program - READ THIS    *
  114. *                                                                            *
  115. * TXT - A DOCUMENTATION FILE - instructions about the program - READ THIS    *
  116. ******************************************************************************
  117.  
  118.      You may also see files like:
  119.     
  120.      README      (no extension)
  121.      READ.ME
  122.      README.1ST
  123.      README.DOC
  124.      MANUAL      (no extension)
  125.      MANUAL.DOC 
  126.  
  127.      These are all documentation files that will tell you about the program,
  128. how to start the program or how to work the program properly. Generally, 
  129. files that do not have extensions are some type of documentation file.
  130.  
  131. VERY IMPORTANT:  READ DOCUMENTATION FILES FIRST BEFORE RUNNING THE PROGRAM!!!
  132.  
  133. ===============================================================================
  134.  
  135.      To view a documentation file on your screen, use the 'TYPE' command.
  136.  
  137. With your program disk in the 'A' drive enter the following command:
  138.  
  139.      A> TYPE filename.ext  <enter> - where 'filename.ext' would be README.DOC
  140.              or whatever the filename is that you wish to view on the screen.
  141.  
  142.      The 'TYPE' command enables you to view documentation on the screen. 
  143.  
  144.      To stop the text from scrolling by, press 'CTRL S' (the CTRL key and 
  145. the 'S' key at the same time), press any other key to resume scrolling.
  146. If you have an 'enhanced' 101 key keyboard, you can use the pause key to
  147. stop the text from scrolling by, and press any other key to resume the
  148. text scrolling.
  149.  
  150.      To obtain a printout of the documentation simply replace the 'TYPE'
  151. command with the 'DOS' command 'COPY'. Turn your printer on and enter
  152. the following command:
  153.  
  154.      A> COPY filename.ext PRN  <enter> - where filename would be README.DOC or 
  155.                                          whatever file you wish to print.
  156.  
  157. ===============================================================================
  158.  
  159.      An 'EXE', 'COM', or 'BAT' file extension means that when you enter the
  160. filename (1st 8 characters only), the computer will do something. For instance:
  161. if the filename were 'POKER.EXE', or 'POKER.COM', or 'POKER.BAT' you would
  162. enter the following at the 'A>' prompt:
  163.  
  164.      A> POKER  <enter> - the poker program would now come up on the screen.
  165.  
  166.      In the case of the 'BAT' extension, documentation could be displayed
  167. on the screen. 'BAT' files do not always cause programs to start 'running'.
  168.  
  169. ===============================================================================
  170.  
  171.      Another type of file (a little tricky to run) is a 'BASIC' file. These
  172. types have the 'BAS' extension.  Any file with this extension must be run with
  173. the 'BASIC' interpreter. 
  174.  
  175. The 'Basic' interpreter is a program reading Basic Source Code and converts
  176. the source code, enabling the computer to understand how to run a program.
  177. The 'Basic' interpreter is not public domain, it is not contained on any
  178. program disks purchased from California Freeware. 'Basic' usually comes
  179. with 'DOS' on the 'supplemental' disk when you purchase your computer. 
  180.  
  181.      That simply means that you must have a copy of either 'GWBASIC.EXE' if 
  182. you have a clone, or 'BASICA.COM' if you have an 'IBM'. These 2 files (GWBASIC
  183. and the 'BAS' file) must reside together or be able to find each other.
  184. An easy way to do this is to simply copy 'GWBASIC.EXE' to the disk that
  185. contains the 'BAS' files. When both files are together and this disk was
  186. in the 'A' drive you would enter the following command:
  187.  
  188.      A> GWBASIC POKER  <enter> - the poker program would now be 'running'
  189.                                 and you would be playing the game.
  190.  
  191.      Another way, if you have 2 floppy drives and the 'BASIC' interpreter 
  192. was in the 'A' drive and your program file (BAS extension) was in the 'B'
  193. drive, issue the following command from the 'B' drive:
  194.  
  195.      B> A:GWBASIC POKER  <enter> - this tells your computer to look to
  196.                          the 'A' drive to find the 'BASIC' interpreter 
  197.                          and will now run your 'Basic' program.
  198.  
  199.      Another way, if the 'BASIC' interpreter is on your hard drive, you
  200. could copy the files from your floppy disk (with the 'BAS' extensions) to
  201. your hard drive into the same subdirectory as your 'BASIC' interpreter
  202. and issue the following command:
  203.  
  204.      C> GWBASIC POKER  <enter> - the poker program would now be 'running'
  205.                                  and you would be playing the game.
  206.  
  207.      When you exit the BASIC interpreter, you will get the prompt 'OK', to
  208. go back to the 'DOS' prompt, type the following 'BASIC' command:
  209.  
  210.      A> SYSTEM  <enter>
  211.  
  212. NOTE:  This command is only needed if your get the 'OK'. It really depends
  213.        on how the Basic program was written.
  214.  
  215. ===============================================================================
  216.  
  217.         VERY IMPORTANT !!!   VERY IMPORTANT !!!   VERY IMPORTANT !!!
  218.  
  219.      Another very important file is one with an 'ARC' extension.  This means
  220. it is an archived file and contains many smaller files within it which must
  221. be extracted before they can be used. Typically, this type of file is sent
  222. over a phone line via a modem, so that none of the files are lost. You get
  223. one file that contains many files within it. The data is 'compressed' so
  224. that it actually takes up less space than the files contained within it.
  225.  
  226.      This is done to save space on some disk(s) you received, either by us
  227. or by the author himself. 
  228.  
  229.      A HELPFUL HINT ABOUT ARCHIVES:
  230.  
  231.      The program most commonly used is called 'PKXARC.COM' or 'PKUNPAK.EXE'.
  232. Please check your disk by doing a 'DIR' to see which 'unarcing' program is
  233. contained on your disk. There are a couple of different ways that these
  234. 'unarcing' programs are used.
  235.  
  236.      If you try to 'unarc' the 'ARC' file onto the same floppy that you
  237. received you may run into problems because there may not be enough room
  238. on that disk for the 'ARC' file and the files that get extracted from it.
  239. When you fill up the floppy disk, you will get an error message telling
  240. you that the disk is full and all of the files will not have been extracted.
  241.      
  242.      It is best to copy all the files from your floppy disk to your hard
  243. disk and extract them onto your hard disk. If you use this method and the
  244. name of the 'archived' file was called 'TEST.ARC', you would use the
  245. following command:
  246.  
  247.      C> PKXARC TEST  <enter> - filenames will now start appearing on
  248.                                your screen as they are extracted.
  249.  
  250.      Another way, if you had 2 floppy drives; the 'ARC' file and either
  251. 'PKUNPAK.EXE' or 'PKXARC.COM' in the 'A' drive and a 'BLANK FORMATTED'
  252. disk in the 'B' drive, you could use the following command:
  253.  
  254.      A>PKXARC TEST B:  <enter> - this would extract all the files and place
  255.                                   them on a disk that was in the 'B' drive.  
  256.  
  257.      You MUST have a 'BLANK FORMATTED' disk in the 'B' drive when issuing
  258. the above command or else you will get an error message. 
  259.  
  260.      In some cases the author has created a special 'EXE' file, so that
  261. when you enter the name, that 'EXE' file will itself extract the files
  262. contained within it. This is called a 'self-extracting' archive. Generally,
  263. this special archive file must be copied to a hard drive before entering
  264. the filename. Usually the author will include a 'README' file explaining
  265. that this is one of those special 'self-extracting' archives.
  266.  
  267.      In this case, if the filename were 'TEST.EXE' you would copy the file
  268. to your hard drive and enter the following command:
  269.  
  270.      C> TEST  <enter> - filenames will now start appearing on your
  271.                         screen as they are extracted.
  272.  
  273.      In this case you do NOT need 'PKXARC.COM' or 'PKUNPAK.EXE' to do
  274. the extracting, just the one file, all by itself.
  275.  
  276.      Unfortunately, there is really no way by just looking at the
  277. filename to decipher if it is indeed a 'self-extracting' archive or 
  278. simply just the program itself.
  279.  
  280. ===============================================================================
  281.  
  282.      Hopefully this help sheet will enable you to understand and use your
  283. disks. If all this still sounds like 'GREEK', then we strongly suggest that
  284. you purchase the following disks or pick up a book about 'DOS' at your local
  285. bookstore.
  286.  
  287.      #257 - BEGINNERS - a tutorial on using public domain/shareware software
  288.      #256 - DOS TUTORIAL - an excellent program teaching about your
  289.                            computer & how to use 'DOS' commands
  290.      #255 - DOS HELP - on-line help screens for 'DOS' commands
  291.  
  292.  
  293.                              Happy computing,
  294.  
  295.                              California Freeware
  296.                              1747 E. AVE Q  # C-1
  297.                              Palmdale, Ca. 93550
  298.                              (805) 273-0300
  299.  
  300.                              (C) Copyright 1989
  301. 
  302.